home *** CD-ROM | disk | FTP | other *** search
/ SOHO - Exploring the Sun - 2003 Update / SOHO - Exploring the Sun - 2003 Update.iso / pc / data / main.dcr / scripts_50.ls < prev    next >
Encoding:
Text File  |  2003-02-25  |  898 b   |  27 lines

  1. on cov_test_a rover, temp, floopname, castname
  2.   global us, uss, nappi_sprite, fade_count, fade_limit
  3.   set floopname2 to floopname & "b"
  4.   if rollOver(rover) then
  5.     nothing()
  6.   else
  7.     if (fade_count >= fade_limit) and (the member of sprite 115 = member floopname of castLib castname) then
  8.       set fade_count to 0
  9.       set the member of sprite 115 to member floopname2 of castLib castname
  10.       set uss to 1
  11.     end if
  12.   end if
  13. end
  14.  
  15. on cov_test rover, y_cord, floopname, castname
  16.   global us, uss, nappi_sprite, fade_count, fade_limit
  17.   set floopname2 to floopname & "b"
  18.   if rollOver(rover) then
  19.     set the locV of sprite nappi_sprite to y_cord
  20.     if (fade_count >= fade_limit) and (the member of sprite 115 <> member floopname of castLib castname) then
  21.       set the member of sprite 115 to member floopname of castLib castname
  22.       set uss to 1
  23.     end if
  24.     set us to 1
  25.   end if
  26. end
  27.